home *** CD-ROM | disk | FTP | other *** search
/ Champak 39 / Volume 39 - JOGO DISK .iso / interface / md.000 / scripts / DefineSprite_72 / frame_1 / DoAction.as
Text File  |  2005-05-06  |  736b  |  26 lines

  1. onEnterFrame = function()
  2. {
  3.    if(_root.conectado == 1)
  4.    {
  5.       if(feito != 1)
  6.       {
  7.          loadVariables("http://www.topgames.com.br/cd/noticias_cd.php",this.not_corridas);
  8.          feito = 1;
  9.       }
  10.       this.not_corridas.bt_noticia.useHandCursor = true;
  11.       this.not_corridas.bt_noticia.enabled = true;
  12.    }
  13.    else
  14.    {
  15.       this.not_corridas.gotoAndStop(1);
  16.       this.not_corridas.texto = "Para visualizar as ├║ltimas not├¡cias, conecte-se ├á internet";
  17.       this.not_corridas.bt_noticia.useHandCursor = false;
  18.       this.not_corridas.bt_noticia.enabled = false;
  19.    }
  20.    if(this.not_corridas.carregado == 1)
  21.    {
  22.       this.not_corridas.play();
  23.       this.not_corridas.carregado = 0;
  24.    }
  25. };
  26.